DecryptArc
DecryptArc(var Input,var Target,var Password)
  This function decrypts *.tze files. The function has only three arguments. No algorithm information is needed when decrypting archives, the algorithm information are store in the encrypted files. The first argument is the input file, the file that you want to decrypt. The second argument is where you want to store the decrypted file. The last argument is the password required to decrypt the archive.
 
  Example:
 

function main()
{
     DecryptArc("C:\\Test.tze","C:\\Temp\\","MyPassword");
}